home *** CD-ROM | disk | FTP | other *** search
- on(press){
- if(this.typeRune == "Magic Rune" && _root.money >= runePrice)
- {
- _root.magRune += useThis;
- _root.money -= runePrice;
- _parent.messo = "Got Magic Runes!";
- }
- else if(this.typeRune == "Fire Rune" && _root.money >= runePrice)
- {
- _root.fireRune += useThis;
- _root.money -= runePrice;
- _parent.messo = "Got Fire Runes!";
- }
- else if(this.typeRune == "Wind Rune" && _root.money >= runePrice)
- {
- _root.windRune += useThis;
- _root.money -= runePrice;
- _parent.messo = "Got Wind Runes!";
- }
- else if(this.typeRune == "Time Rune" && _root.money >= runePrice)
- {
- _root.timeRune += useThis;
- _root.money -= runePrice;
- _parent.messo = "Got Time Runes!";
- }
- else if(this.typeRune == "Explosion Rune" && _root.money >= runePrice)
- {
- _root.exploRune += useThis;
- _root.money -= runePrice;
- _parent.messo = "Got Explosion Runes!";
- }
- else
- {
- _parent.messo = "Not Enough Money!";
- }
- this._visible = false;
- }
-